home *** CD-ROM | disk | FTP | other *** search
- on init26B
- init(10, 1)
- init(3, 1)
- initGrid()
- end
-
- on dragMe whichSprite
- set mouseLoc to the mouseH & "," & the mouseV
- set OffsetL to integer(abs(item 1 of mouseLoc - the left of sprite whichSprite))
- set OffsetT to integer(abs(item 2 of mouseLoc - the top of sprite whichSprite))
- set OffsetR to integer(abs(item 1 of mouseLoc - the right of sprite whichSprite))
- set OffsetB to integer(abs(item 2 of mouseLoc - the bottom of sprite whichSprite))
- repeat while the stillDown
- spriteBox(value(whichSprite), value(the mouseH - OffsetL), value(the mouseV - OffsetT), value(the mouseH + OffsetR), value(the mouseV + OffsetB))
- dentGrid(whichSprite)
- updateStage()
- end repeat
- end
-
- on init x, TRUEorFALSE
- puppetSprite(x, TRUEorFALSE)
- set the immediate of sprite x to TRUEorFALSE
- end
-
- on initGrid
- global gAmtN, gAmtS, gAmtE, gAmtW, gProx, gCurrRow, gCurrCol, gLastH, gLastV, gGridCols, gGridRows
- set gGridCols to 9
- set gGridRows to 9
- set gProx to 0
- set gCurrRow to 4
- set gCurrCol to 6
- set gLastH to integer(item gCurrCol + 1 of line gCurrRow of field "locTable")
- set gLastV to integer(item 1 of line gCurrRow of field "locTable")
- set the locH of sprite 10 to gLastH
- set the locV of sprite 10 to gLastV
- updateStage()
- end
-
- on dentGrid whichSprite
- global gAmtN, gAmtS, gAmtE, gAmtW, gProx, gCurrRow, gCurrCol, gLastH, gLastV, gGridCols, gGridRows
- set nextH to the locH of sprite whichSprite
- set nextV to the locV of sprite whichSprite
- set gAmtN to integer(item 1 of line gCurrRow + 1 of field "locTable")
- set gAmtS to integer(item 1 of line gCurrRow - 1 of field "locTable")
- set gAmtE to integer(item gCurrCol + 2 of line gCurrRow of field "locTable")
- set gAmtW to integer(item gCurrCol of line gCurrRow of field "locTable")
- if nextH >= (gAmtE - gProx) then
- if gCurrCol = gGridCols then
- nothing()
- else
- set lastH to gAmtE
- set gCurrCol to gCurrCol + 1
- end if
- end if
- if nextH <= (gAmtW + gProx) then
- if gCurrCol = 1 then
- nothing()
- else
- set lastH to gAmtW
- set gCurrCol to gCurrCol - 1
- end if
- end if
- if nextV <= (gAmtN + gProx) then
- if gCurrRow = gGridRows then
- nothing()
- else
- set lastV to gAmtN
- set gCurrRow to gCurrRow + 1
- end if
- end if
- if nextV >= (gAmtS - gProx) then
- if gCurrRow = 1 then
- nothing()
- else
- set lastV to gAmtS
- set gCurrRow to gCurrRow - 1
- end if
- end if
- set the castNum of sprite 3 to the number of cast "nullCast" + ((gCurrRow - 1) * gGridCols) + gCurrCol
- updateStage()
- end
-